github.com/klauspost/compress/fse.byteReader.off (field)

13 uses

	github.com/klauspost/compress/fse (current package)
		bytereader.go#L14: 	off int
		bytereader.go#L20: 	b.off = 0
		bytereader.go#L25: 	b.off += int(n)
		bytereader.go#L30: 	b2 := b.b[b.off:]
		bytereader.go#L41: 	return b.b[b.off:]
		bytereader.go#L46: 	return len(b.b) - b.off
		decompress.go#L71: 				if b.off < iend-5 {
		decompress.go#L94: 			if b.off <= iend-7 || b.off+int(bitCount>>3) <= iend-4 {
		decompress.go#L133: 		if b.off <= iend-7 || b.off+int(bitCount>>3) <= iend-4 {
		decompress.go#L137: 			bitCount -= (uint)(8 * (len(b.b) - 4 - b.off))
		decompress.go#L138: 			b.off = len(b.b) - 4